const math/big._S
11 uses
math/big (current package)
arith.go#L19: _S = _W / 8 // word size in bytes
floatmarsh.go#L40: sz += 4 + n*_S // exp + mant
int.go#L453: buf := make([]byte, len(x.abs)*_S)
intmarsh.go#L22: buf := make([]byte, 1+len(x.abs)*_S) // extra byte for version and sign bit
nat.go#L1161: for j := 0; j < _S; j++ {
nat.go#L1193: z = z.make((len(buf) + _S - 1) / _S)
nat.go#L1196: for k := 0; i >= _S; k++ {
nat.go#L1197: z[k] = bigEndianWord(buf[i-_S : i])
nat.go#L1198: i -= _S
ratmarsh.go#L23: buf := make([]byte, 1+4+(len(x.a.abs)+len(x.b.abs))*_S) // extra bytes for version and sign bit (1), and numerator length (4)
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)